home *** CD-ROM | disk | FTP | other *** search
/ Ultimate Blitz Basic 2.1 / Ultimate Blitz Basic 2.1 (1997)(Acid Software).iso / bui6 / frontendv1.0 / install < prev    next >
Text File  |  1997-10-06  |  2KB  |  90 lines

  1. ;;$VER: Install 1.1 (11.3.96)
  2. ;;
  3. ;;   $Filename: Install $
  4. ;;   $Version: 1.1 $
  5. ;;   $Date: 11.3.96 $
  6. ;;
  7. ;;   Installer script to install FrontEnd.
  8. ;;   
  9. ;;   © Copyright 1996 Arturo Roa Ros.
  10. ;;
  11. ;============================================================================================
  12. ;; English
  13.  
  14. (copyfiles
  15.     (prompt "Copy FrontEnd to C:.")
  16.     (help "I need to copy FrontEnd to C:")
  17.     (source "")
  18.     (choices "FrontEnd")
  19.     (dest "C:")
  20.     (confirm)
  21.     (infos)
  22. )
  23. (set directorio
  24.         (askdir
  25.               (prompt "Where dou you want FrontEnd?\n")
  26.               (help "Choose the path where create a directory to FrontEnd.\nIf it dosn't exixts, choose Create New Directory.")
  27.               (default "WORK:")
  28.         )
  29. )
  30. (copyfiles
  31.         (prompt "Copy files.")
  32.     (help "There will be copied files to the destination directory.")
  33.         (source "")
  34.         (choices "Data" "Docs" "Examples" "FrontEndPrefs")
  35.         (dest directorio)
  36.         (confirm)
  37.     (infos)
  38. )
  39. (copyfiles
  40.     (prompt "Copy Catalogs.")
  41.         (help "If you copy this catalogs you can use FrontEnd in your language (only español at the moment).")
  42.     (source "catalogs/")
  43.     (choices "español")
  44.     (dest "LOCALE:catalogs/")
  45.     (confirm)
  46.     (infos)  
  47. )
  48. (copyfiles
  49.     (prompt "Copy Fonts.")
  50.         (help "You have to copy this fonts if you want to use FrontEnd.")
  51.     (source "Fonts/")
  52.     (choices "XEN" "XEN.font")
  53.     (dest "FONTS:")
  54.     (confirm)
  55.     (infos)  
  56. )
  57. (set n
  58.     (askbool
  59.         (prompt "Do you want to decompress the source code of the program?")
  60.         (help "If you choose Yes the Blitz Basic II source code will be decompressed in the destination directory. To decompress the code you need have Lzx in C:")
  61.     )
  62. )
  63. (if (= n 1) 
  64.     (run "Lzx x -M -x BlitzSource.lzx ram:"
  65.         (help "Decompresing BlitzSource.lzx")
  66.         (prompt "Decompresing BlitzSource.lzx to RAM:")
  67.     )
  68. )
  69. (if (= n 1) 
  70.     (copyfiles
  71.         (prompt "Copying Source to "directorio)
  72.         (help   "The Source is copied to "directorio)
  73.         (source "Ram:")
  74.         (dest directorio)
  75.         (choices "BlitzSource")
  76.         (confirm)
  77.         (infos)
  78.     )
  79. )
  80. (if (= n 1) 
  81.     (run "delete Ram:BlitzSource ALL" 
  82.         (prompt "Deleting Ram:BlitzSource")
  83.         (help "lo")
  84.         (confirm)
  85.     )
  86. )
  87. (message "Instalation of FrontEnd V1.0 has finished, you can found FrontEnd in "directorio)
  88. (exit "" (quiet))
  89. ;;================================================================================================
  90.